home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 August: Tool Chest / Dev.CD Aug 00 TC Disk 2.toast / pc / sample code / overview / win2maccountersamples / 3. counterdialog / source / mypp_debugheaders.pch++ < prev    next >
Encoding:
Text File  |  2000-06-23  |  875 b   |  27 lines

  1. // ===========================================================================
  2. //    MyPP_DebugHeaders.pch++           ©1995-1998 Metrowerks Inc. All rights reserved.
  3. // ===========================================================================
  4. //
  5. //    Source for precompiled header for PowerPlant headers
  6. //
  7. //    This file #includes most header files for the PowerPlant library,
  8. //    as well as most of the Toolbox headers used by the PowerPlant library
  9. //    with all debugging symbols defined.
  10.  
  11.  
  12.     // This same file works for PowerPC, CFM68K, and 68K. We check the target
  13.     // at compile time and specify the appropriate output file name.
  14.     
  15. #if __POWERPC__
  16.     #pragma precompile_target "MyPP_DebugHeadersPPC"
  17.     
  18. #elif __CFM68K__
  19.     #pragma precompile_target "MyPP_DebugHeadersCFM68K"
  20.     
  21. #else
  22.     #pragma precompile_target "MyPP_DebugHeaders68K"
  23. #endif
  24.  
  25. #pragma once on
  26.  
  27. #include <PP_DebugHeaders.cp>